home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000350_news@columbia.edu _Wed Sep 18 07:54:26 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id HAA01999 for <kermit.misc@watsun.cc.columbia.edu>; Wed, 18 Sep 1996 07:54:25 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id HAA18563 for kermit.misc@watsun; Wed, 18 Sep 1996 07:54:24 -0400 (EDT)
  4. Path: news.columbia.edu!panix!news1.erols.com!hunter.premier.net!www.nntp.primenet.com!nntp.primenet.com!news.sgi.com!news.msfc.nasa.gov!newsfeed.internetmci.com!in1.uu.net!EU.net!Austria.EU.net!01-newsfeed.univie.ac.at!swidir.switch.ch!surfnet.nl!eur.nl!news.fgg.eur.nl!usenet
  5. From: clotscher@coh.fgg.eur.nl (Pim Clotscher)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Kermit-95 scripts
  8. Date: 18 Sep 1996 11:22:47 GMT
  9. Organization: Erasmus University Rotterdam
  10. Lines: 35
  11. Message-ID: <51om27$e7g@newton.fgg.eur.nl>
  12. NNTP-Posting-Host: coh-236-202.pc.fgg.eur.nl
  13. Mime-Version: 1.0
  14. Content-Type: Text/Plain; charset=US-ASCII
  15. X-Newsreader: WinVN 0.99.7
  16.  
  17. Dear Kermit experts,
  18. As a user os MS-Kermit for several years, I have a problem with a script-bases 
  19. connection to one of our HP Unix-hosts.
  20. The script runs fine, I can login and run a grep on a file, but I never see the 
  21. terminals screen, but only the K95 screen. When I do not logout the host, I can 
  22. connect from the K95 prompt, and then at least I see the grep-results. In 
  23. Ms-Kermit there was a command set display quiet/regular. Whats the K95 
  24. alternative?
  25. My script is attached, to show what ive tried.
  26.  
  27. Thanks so far!
  28. ----------------------------------------------
  29. ; Script for login to HP750 & lookup mail address in $(STRING)
  30. ;
  31. set input timeout quit
  32. set terminal status off
  33. set terminal type vt102
  34. set network tcp/ip
  35. set telnet terminal vt100
  36. set input echo off
  37. set host hp750
  38. input 2 login: 
  39. output myname\13
  40. askq \%p Password:
  41. input 2 Password:
  42. output \%p\13
  43. set input echo on
  44. output grep \$(STRING) /usr/local/SENDMAIL/novaliases\13
  45. pause 2
  46. ;output logout\13
  47. ;pause 3
  48. ;exit
  49. -----------------------------
  50.  
  51.